home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / macosx_SecUpd20031104.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  56 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(12514);
  10.  script_bugtraq_id(8979);
  11.  script_version ("$Revision: 1.3 $");
  12.  name["english"] = "Security Update 2003-11-04";
  13.  
  14.  script_name(english:name["english"]);
  15.  
  16.  desc["english"] = "
  17. The remote host is missing Security Update 2003-11-04
  18.  
  19. This update fixes a flaw in the Terminal application which may
  20. allow a rogue web site to access the web cookies of the user of
  21. the remote host.
  22.  
  23. Solution : 
  24. http://www.apple.com/downloads/macosx/apple/securityupdate20031104.html
  25.                
  26. Risk factor : Medium";
  27.  
  28.  
  29.  script_description(english:desc["english"]);
  30.  
  31.  summary["english"] = "Check for Security Update 2003-11-04";
  32.  script_summary(english:summary["english"]);
  33.  
  34.  script_category(ACT_GATHER_INFO);
  35.  
  36.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  37.  family["english"] = "MacOS X Local Security Checks";
  38.  script_family(english:family["english"]);
  39.  
  40.  script_dependencies("ssh_get_info.nasl");
  41.  script_require_keys("Host/MacOSX/packages");
  42.  exit(0);
  43. }
  44.  
  45.  
  46. packages = get_kb_item("Host/MacOSX/packages");
  47. if ( ! packages ) exit(0);
  48.  
  49. uname = get_kb_item("Host/uname");
  50.  
  51. # MacOS X 10.3.1 only
  52. if ( egrep(pattern:"Darwin.* 7\.1\.", string:uname) )
  53. {
  54.   if ( ! egrep(pattern:"^SecurityUpd2003-11-04", string:packages) ) security_warning(0);
  55. }
  56.